home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1999 / MacHack 1999.toast / Papers / aSEPiA example source / plugin / CPluginInfo.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-06-25  |  495 b   |  24 lines  |  [TEXT/CWIE]

  1. /*---------------------------------------------------------------
  2.  
  3.     CPluginInfor.h
  4.     
  5.     Interface for getting informatio about the plugin such as its
  6.     name and version.
  7.     
  8. ---------------------------------------------------------------*/
  9.  
  10. #ifndef CPluginInfo_H
  11. #define CPluginInfo_H
  12.  
  13. #include "IPluginInfoIntf.h"
  14.  
  15. class CPluginInfo: public IPluginInfoIntf
  16. {
  17. public:
  18.                     ~CPluginInfo();
  19.     virtual void     GetPluginName( char* outName );
  20.     virtual void    GetPluginVersion( short* outVersion );
  21.  
  22. };
  23.  
  24. #endif